optimistic$55403$ - definizione. Che cos'è optimistic$55403$
Diclib.com
Dizionario ChatGPT
Inserisci una parola o una frase in qualsiasi lingua 👆
Lingua:

Traduzione e analisi delle parole tramite l'intelligenza artificiale ChatGPT

In questa pagina puoi ottenere un'analisi dettagliata di una parola o frase, prodotta utilizzando la migliore tecnologia di intelligenza artificiale fino ad oggi:

  • come viene usata la parola
  • frequenza di utilizzo
  • è usato più spesso nel discorso orale o scritto
  • opzioni di traduzione delle parole
  • esempi di utilizzo (varie frasi con traduzione)
  • etimologia

Cosa (chi) è optimistic$55403$ - definizione

Optimistic locking; Optimistic concurrency

optimistic         
  • Optimistic Personality (modified from<ref name="Bates2015" />)
  • ''An optimist and a pessimist'', [[Vladimir Makovsky]], 1893
MENTAL ATTITUDE
Panglossianism; Overoptimism; Panglossian; Optimistic; Strong optimism; Optimistic philosophy; Optomism; Optimalism; Optimalist; Philosophical optimism; Positive mindsets; Positive mindset; Optimist (person); Optimist; Optimistic nihilism
adj.
1) cautiously; incurably optimistic
2) optimistic about, over
3) optimistic that + clause (we are optimistic that the results will be favorable)
optimist         
  • Optimistic Personality (modified from<ref name="Bates2015" />)
  • ''An optimist and a pessimist'', [[Vladimir Makovsky]], 1893
MENTAL ATTITUDE
Panglossianism; Overoptimism; Panglossian; Optimistic; Strong optimism; Optimistic philosophy; Optomism; Optimalism; Optimalist; Philosophical optimism; Positive mindsets; Positive mindset; Optimist (person); Optimist; Optimistic nihilism
(optimists)
An optimist is someone who is hopeful about the future.
Optimists reckon house prices will move up with inflation this year.
? pessimist
N-COUNT
optimism         
  • Optimistic Personality (modified from<ref name="Bates2015" />)
  • ''An optimist and a pessimist'', [[Vladimir Makovsky]], 1893
MENTAL ATTITUDE
Panglossianism; Overoptimism; Panglossian; Optimistic; Strong optimism; Optimistic philosophy; Optomism; Optimalism; Optimalist; Philosophical optimism; Positive mindsets; Positive mindset; Optimist (person); Optimist; Optimistic nihilism
¦ noun
1. hopefulness and confidence about the future or the success of something.
2. Philosophy the doctrine, especially as set forth by Leibniz, that this world is the best of all possible worlds.
the belief that good must ultimately prevail over evil in the universe.
Derivatives
optimist noun
Origin
C18: from Fr. optimisme, from L. optimum (see optimum).

Wikipedia

Optimistic concurrency control

Optimistic concurrency control (OCC), also known as optimistic locking, is a concurrency control method applied to transactional systems such as relational database management systems and software transactional memory. OCC assumes that multiple transactions can frequently complete without interfering with each other. While running, transactions use data resources without acquiring locks on those resources. Before committing, each transaction verifies that no other transaction has modified the data it has read. If the check reveals conflicting modifications, the committing transaction rolls back and can be restarted. Optimistic concurrency control was first proposed by H. T. Kung and John T. Robinson.

OCC is generally used in environments with low data contention. When conflicts are rare, transactions can complete without the expense of managing locks and without having transactions wait for other transactions' locks to clear, leading to higher throughput than other concurrency control methods. However, if contention for data resources is frequent, the cost of repeatedly restarting transactions hurts performance significantly, in which case other concurrency control methods may be better suited. However, locking-based ("pessimistic") methods also can deliver poor performance because locking can drastically limit effective concurrency even when deadlocks are avoided.